home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / clw438.zip / libs.ex$ / CGEN.C < prev    next >
C/C++ Source or Header  |  1997-06-07  |  1KB  |  69 lines

  1. /* (c) R&D Associates 1992-1997.
  2.     All Rights Reserved.
  3.  
  4.     For a generic vendor. (C only)
  5.  
  6.     Build cgen.clb using:
  7.  
  8.         clint cgen.c -L+cgen.clb -I. %1 %2 %3 -3- -KB0 -Ab0 -An0 -Ah0 -Ai0
  9.  
  10.     Additional switched may be needed!
  11. */
  12.  
  13. /* Force correct stuff even if the wrong compiler is specified. */
  14.  
  15. #undef __TURBOC__
  16. #undef __BORLANDC__
  17. #undef __SC__
  18. #undef __ZTC__
  19. #undef zpage
  20. #undef no_init
  21. #undef monitor
  22. #undef non_banked
  23. #undef _handle
  24. #undef selector
  25. #undef _SIZEOF_INT
  26. #undef _SIZEOF_LONG
  27. #undef __TID__
  28. #undef MSC_VER
  29. #undef WIN32_LEAN_AND_MEAN
  30. #undef __FLAT__
  31. #undef __WIN32__
  32. #undef _WIN32
  33. #undef M_I86
  34. #undef _M_IX86
  35. #undef __declspec
  36. #undef __inline
  37. #undef __int64
  38. #undef __unaligned
  39.  
  40.  
  41. #pragma lint -w-tni
  42. #pragma lint -w-tns
  43. #pragma lint -w-rtm
  44.  
  45. /* WARNING: This is a generic and minimal set of ANSI C headers. All modern
  46. compilers should have these. Run CGEN.BAT by hand and fix any problems to get
  47. a valid CGEN.CLB. You can do much better by adding headers to this list. */
  48.  
  49. #include "assert.h"
  50. #include "ctype.h"
  51. #include "errno.h"
  52. #include "fcntl.h"
  53. #include "limits.h"
  54. #include "math.h"
  55. #include "memory.h"
  56. #include "process.h"
  57. #include "setjmp.h"
  58. #include "signal.h"
  59. #include "stdarg.h"
  60. #include "stdio.h"
  61. #include "stdlib.h"
  62. #include "string.h"
  63. #include "time.h"
  64.  
  65. #include "sys/stat.h"
  66. #include "sys/timeb.h"
  67.  
  68. /* End of file. */
  69.